home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Textdisplayers / PPMore / Install.script < prev    next >
Text File  |  1996-09-26  |  2KB  |  75 lines

  1.  
  2. ; Script file to install powerpacker.library 35.254
  3.  
  4. FailAt 20
  5.  
  6. Echo "*npowerpacker.library Installation Script*n"
  7. Version >NIL: LIBS:powerpacker.library
  8. If NOT ERROR
  9.     Echo "Version of powerpacker.library already installed:"
  10.     Version LIBS:powerpacker.library
  11.     Echo ""
  12. EndIf
  13.  
  14. Ask "Install powerpacker.library version 35.254 ?"
  15. If NOT WARN
  16.     Skip Aborted
  17. EndIf
  18.  
  19. Copy powerpacker.library LIBS:powerpacker.library
  20. Echo "*npowerpacker.library 35.254 copied to your LIBS: directory.*n"
  21.  
  22. Version >NIL: exec.library 37
  23. If NOT WARN
  24.     Echo "Your Amiga has Kickstart 2.0 (V37) or higher in ROM."
  25.     Ask "Install special AmigaOS Release 2 version of reqtools.library ?"
  26.     If WARN
  27.         Copy kick20/reqtools.library LIBS:reqtools.library
  28.         Echo "*nreqtools.library V37 (2.0 version) copied to your LIBS: directory."
  29.         Skip INSTALLED
  30.     EndIf
  31. EndIf
  32.  
  33. Copy kick13/reqtools.library LIBS:reqtools.library
  34. Echo "reqtools.library V37 copied to your LIBS: directory."
  35.  
  36. Version >NIL: exec.library 37
  37. If NOT WARN
  38.     Skip INSTALLED
  39. EndIf
  40.  
  41. Echo "*nCopying 'LoadPPLib' to your C: directory..."
  42. Copy LoadPPLib c:
  43.  
  44. Echo "*nYour Amiga has Kickstart 1.2 or 1.3 in ROM."
  45. Echo "These versions have a few bugs that are fixed as of Kickstart 2.0."
  46. Echo "To circumvent these bugs it is important that your Amiga executes"
  47. Echo "the command 'LoadPPLib' each time it boots."
  48. Echo "Without this powerpacker.library may not operate correctly.*n"
  49. Echo "Shall I modify your 's:Startup-Sequence' so that it"
  50. Ask  "contains the 'LoadPPLib' command ?"
  51. If WARN
  52.     Echo >RAM:loadpplibtempfile "LoadPPLib"
  53.     Join RAM:loadpplibtempfile SYS:s/Startup-Sequence AS RAM:loadpplibtempfile2
  54.     Copy RAM:loadpplibtempfile2 SYS:s/Startup-Sequence
  55.     Delete RAM:loadpplibtempfile QUIET
  56.     Delete RAM:loadpplibtempfile2 QUIET
  57. Else
  58.     Echo "*nPlease modify your Startup-Sequence manually so that it contains"
  59.     Echo "the 'LoadPPLib' command."
  60. EndIf
  61.  
  62. Lab INSTALLED
  63.  
  64. Echo "*nInstallation complete.*n"
  65. Skip END
  66.  
  67. Lab ABORTED
  68.  
  69. Echo "*nInstallation aborted!*n"
  70.  
  71. Lab END
  72.  
  73. Wait 5
  74. EndCLI >NIL:
  75.